@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
    line-height: 1.6;
}

/* HERO SECTION */
.env-hero {
    background: url('https://images.unsplash.com/photo-1506765515384-028b60a970df?auto=format&w=1200') center/cover no-repeat;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.env-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
}

.env-hero-text p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}

/* ABOUT */
.env-about {
    padding: 60px 8%;
    text-align: center;
}

.env-about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c7a3f;
}

.env-about p {
    font-size: 1.1rem;
    color: #444;
}

/* HIGHLIGHTS */
.env-highlights {
    padding: 60px 8%;
}

.env-highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c7a3f;
}

.highlight-box {
    background: #e9f7ec;
    padding: 25px;
    border-left: 5px solid #2c7a3f;
    border-radius: 8px;
    margin-bottom: 25px;
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: #2c7a3f;
}

.highlight-box p {
    color: #333;
    margin-top: 5px;
}

/* IMPACT SECTION */
.env-impact {
    background: #f4fff4;
    padding: 60px 8%;
}

.env-impact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c7a3f;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.impact-card {
    background: #e9f7ec;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.impact-card h3 {
    font-size: 2rem;
    color: #2c7a3f;
}

.impact-card p {
    margin-top: 5px;
    color: #333;
}

/* CTA SECTION */
.env-cta {
    padding: 70px 8%;
    background: #2c7a3f;
    color: #fff;
    text-align: center;
}

.env-cta h2 {
    font-size: 2rem;
}

.env-cta p {
    margin: 15px 0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #2c7a3f;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #e9f7ec;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .env-hero-text h1 {
        font-size: 2rem;
    }
    .env-hero {
        height: 55vh;
    }
}
